home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Open e89
/
pcopen_e89.iso
/
webdesign
/
Tsw WebCoder
/
tswwebcoder4en.exe
/
{app}
/
scripts
/
phpmultilinecomment.tss
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2003-07-09
|
229 b
|
15 lines
{
[Scriptsettings]
Scriptname=PHP multiline comment
ExecuteOnStartup=0
ExecuteOnlyOnce=0
}
program PHPMultilineComment;
var
Code: string;
begin
Code := '/*'+#13#10+GetSelText+#13#10+'*/';
SetSelText(Code);
end.